home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19961006-19970104 / 000372_news@columbia.edu _Fri Dec 27 19:07:26 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.8.3/8.8.3) with ESMTP id TAA29603 for <kermit.misc@watsun.cc.columbia.edu>; Fri, 27 Dec 1996 19:07:25 -0500 (EST)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.8.3/8.8.3) id TAA18908 for kermit.misc@watsun; Fri, 27 Dec 1996 19:07:24 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: New modem scripts for MS-DOS Kermit 3.15
  8. Date: 28 Dec 1996 00:06:23 GMT
  9. Organization: Columbia University
  10. Lines: 53
  11. Message-ID: <5a1o9v$rs2$1@apakabar.cc.columbia.edu>
  12. NNTP-Posting-Host: watsun.cc.columbia.edu
  13. Xref: news.columbia.edu comp.protocols.kermit.misc:6330
  14.  
  15.  
  16. A small group of new modem scripts has been assembled for use with MS-DOS
  17. Kermit 3.15 Beta 12 or later.  These new scripts take advantage of many of
  18. the new features in the scripting language: block structure, MINPUT (INPUT
  19. with multiple simultaneous targets), local variables, and so on.  Some have
  20. been tested, some have not.  If you would like to try them out and report
  21. back to kermit@columbia.edu, here are the ones currently available:
  22.  
  23.  Name        Remarks
  24.   compaq.ksc  Compaq internal modems -- untested
  25.   hayes.ksc   Hayes 1200 and 2400 -- tested on 1200 only
  26.   megahz.ksc  Megahertz X-Jack V.34 (XJ3144 or CC6144) -- untested
  27.   sport.ksc   US Robotics Sportster or Courier
  28.   supra.ksc   Supra or SupraSonic modems -- untested
  29.   t3000.ksc   Telebit T3000 (or T1600 or Qblazer) -- tested on T3000
  30.  
  31. The new modem scripts are in:
  32.  
  33.   ftp://kermit.columbia.edu/kermit/test/modems/
  34.  
  35. And MS-DOS Kermit 3.15 Beta 12 is in:
  36.  
  37.   ftp://kermit.columbia.edu/kermit/test/bin/msk315.zip
  38.  
  39. The filenames are (of course) in DOS 8.3 format.  The new KSC filetype
  40. stands for "Kermit SCript".  We can't use .SCR any more because in the world
  41. of Windows, that stands for "SCReen saver".
  42.  
  43. A nice feature of the new scripts is that various parameters can be set
  44. by defining environment or Kermit variables.  These are:
  45.  
  46.   DIALPORT    - COM port to use for dialing (COM1, etc, default current port)
  47.   DIALSPEED   - Speed for dialing (default depends on script)
  48.   DIALMETHOD  - TONE or PULSE (modem's default method is used by default)
  49.   DIALRETRIES - Maximum times to redial the call (default 5)
  50.   DIALTIMEOUT - How long to wait for result from modem (default 90 seconds)
  51.  
  52. If any of these variables is not defined, an appropriate default is used.
  53.  
  54. To test these scripts, put them in the same directory with MSK315.EXE and
  55. make sure that is your current directory.  Then tell MSK315 to:
  56.  
  57.   define dial set port 1, take xxxx.ksc
  58.  
  59. Replace "port 1" with "port 2" or whatever port number your modem is
  60. connected to if it is not port 1, and replace "xxxx.ksc" with the name of
  61. the dialing script.  Then tell Kermit to DIAL in the normal way, e.g.:
  62.  
  63.   dial 7654321
  64.  
  65. Read the comments in each script for additional details.
  66.  
  67. - Frank